home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / versionResources / versionProductInfo.h < prev    next >
Encoding:
Text File  |  1997-07-24  |  2.1 KB  |  48 lines  |  [TEXT/CWIE]

  1. // ===========================================================================
  2. // versionProductInfo.h
  3. //   ---------------------
  4. //   ©1996 Eric Gundrum, All rights reserved.
  5. //   The contents of this file may be freely altered and freely distributed
  6. //   in any form, provided this copyright statement is retained unaltered.
  7. //   Add your own changes below.
  8. //   ---------------------
  9. //
  10. //    This file defines your product and file specific version information used 
  11. //    by version.r. Change these values to identify your product. 
  12. //
  13. //    Consider overriding these definitions in your make file to better automate 
  14. //    the versioning process.
  15.  
  16.  
  17. #ifndef __versionProductInfo__h
  18. #define __versionProductInfo__h    1
  19.  
  20. #define    productFileName            "Product file name"        // helpful in file recovery
  21. #define    productName                "Product name"            // collects files of a product
  22. #define    productCopyrightOwner    "Eric Gundrum"            // copyright holder
  23. #define    productReleaseYear        $$format( "%d", $$Year )    // copyright year
  24.  
  25. // Displayed in Finder Balloon help; up to 480 bytes recommended; container limit is 32K.
  26. #define    productDescription        "Product description text."    
  27.  
  28. // Displayed by the Finder when an application to open this file can't be found.
  29. #define missingAppMessage        "This is not an application document. Opening it does not work."
  30.  
  31. #define productVersMajor        1            // between 0 and 15
  32. #define productVersMinor        0            // between 0 and 15
  33. #define productVersMaintenance    0            // between 0 and 255
  34. #define productVersReleaseType    development    // choose development, alpha, beta or final
  35. #define productVersNonrelease    1            // between 0 and 255
  36. #define productVersRegion        verUS        // localization code
  37.  
  38. #define fileVersMajor            1            // between 0 and 15
  39. #define fileVersMinor            0            // between 0 and 15
  40. #define fileVersMaintenance        0            // between 0 and 255
  41. #define fileVersReleaseType        development    // choose development, alpha, beta or final
  42. #define fileVersNonrelease        1            // between 0 and 255
  43. #define fileVersRegion            productVersRegion
  44.  
  45. #endif __versionProductInfo__h
  46.  
  47. // ===========================================================================
  48. //EOF